GtkStyleContext: Add gtk_render_frame().
authorCarlos Garnacho <carlosg@gnome.org>
Sat, 27 Mar 2010 19:12:46 +0000 (20:12 +0100)
committerCarlos Garnacho <carlosg@gnome.org>
Sat, 4 Dec 2010 14:36:55 +0000 (15:36 +0100)
gtk/gtkstylecontext.c
gtk/gtkstylecontext.h

index 6f44c6dbfc12d081f0e03dfa4b1f90100d57a807..9e97fda6a6c95b32bad05eb74879ca88ee6e37f8 100644 (file)
@@ -672,5 +672,26 @@ gtk_render_background (GtkStyleContext *context,
   engine_class->render_background (priv->theming_engine, cr, x, y, width, height);
 }
 
+void
+gtk_render_frame (GtkStyleContext *context,
+                  cairo_t         *cr,
+                  gdouble          x,
+                  gdouble          y,
+                  gdouble          width,
+                  gdouble          height)
+{
+  GtkStyleContextPrivate *priv;
+  GtkThemingEngineClass *engine_class;
+
+  g_return_if_fail (GTK_IS_STYLE_CONTEXT (context));
+  g_return_if_fail (cr != NULL);
+
+  priv = GTK_STYLE_CONTEXT_GET_PRIVATE (context);
+  engine_class = GTK_THEMING_ENGINE_GET_CLASS (priv->theming_engine);
+
+  _gtk_theming_engine_set_context (priv->theming_engine, context);
+  engine_class->render_frame (priv->theming_engine, cr, x, y, width, height);
+}
+
 #define __GTK_STYLE_CONTEXT_C__
 #include "gtkaliasdef.c"
index e68d6f9de5c58ff20aee5c7a0c63c1f77aad4ada..f432b4a45885974c57bf5ec2c5a13587819bd2fb 100644 (file)
@@ -127,6 +127,12 @@ void gtk_render_background (GtkStyleContext *context,
                             gdouble          y,
                             gdouble          width,
                             gdouble          height);
+void gtk_render_frame  (GtkStyleContext *context,
+                        cairo_t         *cr,
+                        gdouble          x,
+                        gdouble          y,
+                        gdouble          width,
+                        gdouble          height);
 
 G_END_DECLS